home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / etc / httpd / cgi-bin / date < prev    next >
Encoding:
Text File  |  1994-03-09  |  154 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. DATE=`which date`
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $DATE ];  then
  9.     $DATE
  10. else 
  11.     echo Cannot find date command on this system.
  12. fi
  13.  
  14.  
  15.